home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 5 / BBS in a Box -Volume V (BBS in a Box) (April 1992).iso / Files / Prog / B-C / BINTERATIVE. < prev    next >
Encoding:
Text File  |  1987-04-13  |  256 b   |  13 lines  |  [TEXT/MSWD]

  1. program Text;
  2. {allows user to input info in the form of characters}
  3.   const
  4.      days_in_year = 365.25;
  5.   var
  6.      
  7.       entry         : string[80];
  8.       
  9.   begin
  10.     writeln ('What is your name please?');
  11.     readln (entry);
  12.    
  13.   end.